use crate::core::config::Config;
pub mod create;
pub mod delete;
pub mod filter;
pub mod mget;
pub mod patch;
pub mod regular;
pub mod resurrect;
pub mod search;
pub mod to_be_resigned;
pub use create::*;
pub use delete::*;
pub use filter::*;
pub use mget::*;
pub use patch::*;
pub use regular::*;
pub use resurrect::*;
pub use search::*;
pub use to_be_resigned::*;
pub struct EmployeeService {
pub config: Config,
}
impl EmployeeService {
pub fn new(config: Config) -> Self {
Self { config }
}
}