ava-innersource / Liquid-Application-Framework-1.0-deprecated

Liquid is a framework to speed up the development of microservices
MIT License
25 stars 13 forks source link

The property CritictHandler is misspelled within ILightDomain interface #130

Open guilhermeluizsp opened 4 years ago

guilhermeluizsp commented 4 years ago

ILightDomain has a property of type ICriticHandler. This property is misspelled as "CritictHandler" (with an extra t).

https://github.com/Avanade/Liquid-Application-Framework/blob/be28f796798fe4f9648b96e5cf9b484dd63846fa/src/Liquid.Base/Interfaces/Domain/ILightDomain.cs#L3-L9

bruno-brant commented 4 years ago

This kind of issue (all issues marked as spelling) should be solved in the same manner: mark the current property as Obsolete and create an alias property that has the same backing field.

We will remove Obsolete at a later date.