C# Class Membership.Service.CommonMembershipService

Inheritance: BaseMembershipService, ICommonMembershipService
Exibir arquivo Open project: serdarb/Membership-Service

Public Methods

Method Description
AddAdminMenuItem ( AdminMenuItemDto dto ) : bool
AddAdminMenuItemRole ( AdminMenuItemRoleDto dto ) : bool
AddAdminRole ( AdminRoleDto dto ) : bool
AddCity ( CityDto dto ) : bool
AddCountry ( CountryDto country ) : bool
AddCounty ( CountyDto dto ) : bool
AddEmployeeAdminRole ( EmployeeAdminRoleDto dto ) : bool
AddGender ( GenderDto dto ) : bool
AddGeoZone ( GeoZoneDto dto ) : bool
AddLog ( LogDto dto ) : bool
AddLogEvent ( LogEventDto dto ) : bool
AddUserType ( UserTypeDto dto ) : bool
DeleteAdminMenuItem ( AdminMenuItemDto dto ) : bool
DeleteAdminMenuItemRole ( AdminMenuItemRoleDto dto ) : bool
DeleteAdminRole ( AdminRoleDto dto ) : bool
DeleteCity ( CityDto dto ) : bool
DeleteCountry ( CountryDto dto ) : bool
DeleteCounty ( CountyDto dto ) : bool
DeleteEmployeeAdminRole ( EmployeeAdminRoleDto dto ) : bool
DeleteGender ( GenderDto dto ) : bool
DeleteGeoZone ( GeoZoneDto dto ) : bool
DeleteLogEvent ( LogEventDto dto ) : bool
DeleteUserType ( UserTypeDto dto ) : bool
GetAdminMenuItemIdByName ( string Name ) : int
GetAdminMenuItemRoles ( ) : List
GetAdminMenuItems ( ) : List
GetAdminRoles ( ) : List
GetCities ( ) : List
GetCounties ( ) : List
GetCountiesByCityId ( int Id ) : List
GetCountries ( ) : List
GetCountryIdByGeoZoneId ( int Id ) : int
GetEmployeeAdminRoles ( ) : List
GetGenders ( ) : List
GetGeoZoneIdByCityId ( int id ) : int
GetGeoZones ( ) : List
GetLogEvents ( ) : List
GetLogs ( ) : List
GetUserTypes ( ) : List
UpdateAdminMenuItem ( AdminMenuItemDto dto ) : bool
UpdateAdminMenuItemRole ( AdminMenuItemRoleDto dto ) : bool
UpdateAdminRole ( AdminRoleDto dto ) : bool
UpdateCity ( CityDto dto ) : bool
UpdateCountry ( CountryDto dto ) : bool
UpdateCounty ( CountyDto dto ) : bool
UpdateEmployeeAdminRole ( EmployeeAdminRoleDto dto ) : bool
UpdateGender ( GenderDto dto ) : bool
UpdateGeoZone ( GeoZoneDto dto ) : bool
UpdateLog ( LogDto dto ) : bool
UpdateLogEvent ( LogEventDto dto ) : bool
UpdateUserType ( UserTypeDto dto ) : bool

Method Details

AddAdminMenuItem() public method

public AddAdminMenuItem ( AdminMenuItemDto dto ) : bool
dto Membership.Contract.AdminMenuItemDto
return bool

AddAdminMenuItemRole() public method

public AddAdminMenuItemRole ( AdminMenuItemRoleDto dto ) : bool
dto Membership.Contract.AdminMenuItemRoleDto
return bool

AddAdminRole() public method

public AddAdminRole ( AdminRoleDto dto ) : bool
dto Membership.Contract.AdminRoleDto
return bool

AddCity() public method

public AddCity ( CityDto dto ) : bool
dto Membership.Contract.CityDto
return bool

AddCountry() public method

public AddCountry ( CountryDto country ) : bool
country Membership.Contract.CountryDto
return bool

AddCounty() public method

public AddCounty ( CountyDto dto ) : bool
dto Membership.Contract.CountyDto
return bool

AddEmployeeAdminRole() public method

public AddEmployeeAdminRole ( EmployeeAdminRoleDto dto ) : bool
dto Membership.Contract.EmployeeAdminRoleDto
return bool

AddGender() public method

public AddGender ( GenderDto dto ) : bool
dto Membership.Contract.GenderDto
return bool

AddGeoZone() public method

public AddGeoZone ( GeoZoneDto dto ) : bool
dto Membership.Contract.GeoZoneDto
return bool

AddLog() public method

public AddLog ( LogDto dto ) : bool
dto Membership.Contract.LogDto
return bool

AddLogEvent() public method

public AddLogEvent ( LogEventDto dto ) : bool
dto Membership.Contract.LogEventDto
return bool

AddUserType() public method

public AddUserType ( UserTypeDto dto ) : bool
dto Membership.Contract.UserTypeDto
return bool

DeleteAdminMenuItem() public method

public DeleteAdminMenuItem ( AdminMenuItemDto dto ) : bool
dto Membership.Contract.AdminMenuItemDto
return bool

DeleteAdminMenuItemRole() public method

public DeleteAdminMenuItemRole ( AdminMenuItemRoleDto dto ) : bool
dto Membership.Contract.AdminMenuItemRoleDto
return bool

DeleteAdminRole() public method

public DeleteAdminRole ( AdminRoleDto dto ) : bool
dto Membership.Contract.AdminRoleDto
return bool

DeleteCity() public method

public DeleteCity ( CityDto dto ) : bool
dto Membership.Contract.CityDto
return bool

DeleteCountry() public method

public DeleteCountry ( CountryDto dto ) : bool
dto Membership.Contract.CountryDto
return bool

DeleteCounty() public method

public DeleteCounty ( CountyDto dto ) : bool
dto Membership.Contract.CountyDto
return bool

DeleteEmployeeAdminRole() public method

public DeleteEmployeeAdminRole ( EmployeeAdminRoleDto dto ) : bool
dto Membership.Contract.EmployeeAdminRoleDto
return bool

DeleteGender() public method

public DeleteGender ( GenderDto dto ) : bool
dto Membership.Contract.GenderDto
return bool

DeleteGeoZone() public method

public DeleteGeoZone ( GeoZoneDto dto ) : bool
dto Membership.Contract.GeoZoneDto
return bool

DeleteLogEvent() public method

public DeleteLogEvent ( LogEventDto dto ) : bool
dto Membership.Contract.LogEventDto
return bool

DeleteUserType() public method

public DeleteUserType ( UserTypeDto dto ) : bool
dto Membership.Contract.UserTypeDto
return bool

GetAdminMenuItemIdByName() public method

public GetAdminMenuItemIdByName ( string Name ) : int
Name string
return int

GetAdminMenuItemRoles() public method

public GetAdminMenuItemRoles ( ) : List
return List

GetAdminMenuItems() public method

public GetAdminMenuItems ( ) : List
return List

GetAdminRoles() public method

public GetAdminRoles ( ) : List
return List

GetCities() public method

public GetCities ( ) : List
return List

GetCounties() public method

public GetCounties ( ) : List
return List

GetCountiesByCityId() public method

public GetCountiesByCityId ( int Id ) : List
Id int
return List

GetCountries() public method

public GetCountries ( ) : List
return List

GetCountryIdByGeoZoneId() public method

public GetCountryIdByGeoZoneId ( int Id ) : int
Id int
return int

GetEmployeeAdminRoles() public method

public GetEmployeeAdminRoles ( ) : List
return List

GetGenders() public method

public GetGenders ( ) : List
return List

GetGeoZoneIdByCityId() public method

public GetGeoZoneIdByCityId ( int id ) : int
id int
return int

GetGeoZones() public method

public GetGeoZones ( ) : List
return List

GetLogEvents() public method

public GetLogEvents ( ) : List
return List

GetLogs() public method

public GetLogs ( ) : List
return List

GetUserTypes() public method

public GetUserTypes ( ) : List
return List

UpdateAdminMenuItem() public method

public UpdateAdminMenuItem ( AdminMenuItemDto dto ) : bool
dto Membership.Contract.AdminMenuItemDto
return bool

UpdateAdminMenuItemRole() public method

public UpdateAdminMenuItemRole ( AdminMenuItemRoleDto dto ) : bool
dto Membership.Contract.AdminMenuItemRoleDto
return bool

UpdateAdminRole() public method

public UpdateAdminRole ( AdminRoleDto dto ) : bool
dto Membership.Contract.AdminRoleDto
return bool

UpdateCity() public method

public UpdateCity ( CityDto dto ) : bool
dto Membership.Contract.CityDto
return bool

UpdateCountry() public method

public UpdateCountry ( CountryDto dto ) : bool
dto Membership.Contract.CountryDto
return bool

UpdateCounty() public method

public UpdateCounty ( CountyDto dto ) : bool
dto Membership.Contract.CountyDto
return bool

UpdateEmployeeAdminRole() public method

public UpdateEmployeeAdminRole ( EmployeeAdminRoleDto dto ) : bool
dto Membership.Contract.EmployeeAdminRoleDto
return bool

UpdateGender() public method

public UpdateGender ( GenderDto dto ) : bool
dto Membership.Contract.GenderDto
return bool

UpdateGeoZone() public method

public UpdateGeoZone ( GeoZoneDto dto ) : bool
dto Membership.Contract.GeoZoneDto
return bool

UpdateLog() public method

public UpdateLog ( LogDto dto ) : bool
dto Membership.Contract.LogDto
return bool

UpdateLogEvent() public method

public UpdateLogEvent ( LogEventDto dto ) : bool
dto Membership.Contract.LogEventDto
return bool

UpdateUserType() public method

public UpdateUserType ( UserTypeDto dto ) : bool
dto Membership.Contract.UserTypeDto
return bool