public GunTypeService(IGunTypeRepository iRepository)
 {
     this.repository = iRepository;
 }
 public GunTypeService()
 {
     this.repository = new GunTypeRepository();
 }