/// <summary>
 ///In constructor, we can get needed classes/interfaces.
 ///They are sent here by dependency injection system automatically.
 /// </summary>
 public RoofTypeAppService(IRoofTypeRepository roofTypeRepository)
 {
     _roofTypeRepository = roofTypeRepository;
 }
 /// <summary>
 ///In constructor, we can get needed classes/interfaces.
 ///They are sent here by dependency injection system automatically.
 /// </summary>
 public RoofTypeAppService(IRoofTypeRepository roofTypeRepository)
 {
     _roofTypeRepository = roofTypeRepository;
 }